Determinants - The Area Factor

Introduction

Determinants give us a single number that describes how a linear transformation changes area (in 2D) or volume (in 3D).
You already know that linear transformations stretch, shrink, flip, or rotate shapes. The determinant tells you how much the size changes.

Key ideas:

Geometric Meaning of the Determinant

Think of a simple shape: a unit square.
Apply a matrix $A$ to it. The image is a parallelogram.

The determinant tells you:

Visual intuition

Computing Determinants in 2D

For a $2 \times 2$ matrix $$A = \begin{pmatrix} a & b \\ c & d \end{pmatrix},$$ the determinant is $$\det(A) = ad - bc.$$ Why this formula?

Quick examples

Determinants and Orientation

Orientation is about “handedness.”
A positive determinant preserves orientation; a negative one reverses it.

Examples:

Determinants in 3D (Briefly)

For a $3 \times 3$ matrix, the determinant measures volume scaling.

If $$\det(A) = 5,$$ then any 3D shape’s volume becomes 5 times larger after applying $A$.

You don’t need the full formula here — the geometric idea is what matters.

Why Determinants Matter

Determinants appear everywhere:

A matrix is invertible iff its determinant is nonzero.

Calculator

Calculating the Determinant

  • The determinant can be calculated using the $\operatorname{det}()$ function:
det([1, 2; 3, 4])

Exercises

  1. Compute the determinant of $$\begin{pmatrix} 3 & 1 \\ 2 & 4 \end{pmatrix}.$$

    Solution

    $$\det = 3\cdot 4 - 1\cdot 2 = 12 - 2 = 10.$$
  2. The matrix $$A = \begin{pmatrix} 2 & 0 \\ 1 & 3 \end{pmatrix}$$ stretches area by what factor?

    Solution

    $$\det(A) = 2\cdot 3 - 0\cdot 1 = 6.$$ Area is multiplied by $6$.
  3. True or false: A matrix with determinant $-2$ preserves orientation.

    Solution


    False.
    A negative determinant reverses orientation.
  4. A transformation sends the unit square to a parallelogram of area $7$.
    What is $|\det(A)|$?

    Solution


    The determinant’s absolute value equals the area scaling factor: $$|\det(A)| = 7.$$
  5. Compute the determinant of $$\begin{pmatrix} 0 & 5 \\ -2 & 1 \end{pmatrix}.$$

    Solution

    $$\det = 0\cdot 1 - 5(-2) = 10.$$
  6. A matrix has determinant $0$. What does this say about the area of the transformed unit square?

    Solution


    The area becomes $0$.
    The transformation collapses the square into a line segment or a point.
  7. Compute the determinant of $$\begin{pmatrix} 4 & 2 \\ 1 & 0 \end{pmatrix}.$$

    Solution

    $$\det = 4\cdot 0 - 2\cdot 1 = -2.$$